| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1× 1× 2× 2× 2× 1× 2× | /* eslint-disable max-lines */
define(['angular', '../module'], function (angular, mod) {
'use strict';
mod.controller('basic.home', function ($scope) {
var vm = this;
vm.text = "world123";
vm.add = function (a, b) {
return a + b;
}
vm.subtract = function(a, b){
return a - b;
}
});
}); |